home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990422-19990725 / 000239_news@columbia.edu _Fri Jul 2 12:49:18 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id MAA00551
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 2 Jul 1999 12:49:18 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id MAA29959
  7.     for kermit.misc@watsun.cc.columbia.edu; Fri, 2 Jul 1999 12:43:15 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: Sending directories and subdirectories
  11. Date: 2 Jul 1999 16:43:14 GMT
  12. Organization: Columbia University
  13. Message-ID: <7liq72$t83$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <fADf38gVdB2X092yn@iafrica.com>,
  17. Danie van Zyl <danman@iafrica.com> wrote:
  18. : I have the C-Kermit book, but must be overlooking the obvious. I want to
  19. : send the content of a drive, (directories and subdirectories) from one 
  20. : machine to another useing Kermit 95. What is the right command. I can 
  21. : send files by using send without any problem.
  22. The normal approach is to collect the contents of the drive into a ZIP
  23. or tar archive and then send that.  But of course, this approach has
  24. drawbacks:
  25.  
  26.  . It assumes you have a place to put the archive (on each end).
  27.  
  28.  . It assumes the receiving computer has the same file formats as
  29.    the sending one, and the appropriate de-archiving program.
  30.  
  31. C-Kermit 7.0, which is in Beta test:
  32.  
  33.   http://www.columbia.edu/kermit/ck70.html
  34.  
  35. and K95 1.1.18 (which is based on C-Kermit 7.0, but which is not out yet)
  36. addresses both.  It can either:
  37.  
  38.  . Send from a pipeline and receive to a pipeline, thus obviating the need
  39.    for temporary storage space for the archive file (in the scenario where
  40.    the two computers are the same kind).
  41.  
  42.  . Send a directory tree, descending through it recursively, switching
  43.    between text and binary mode automatically on a per-file basis, and
  44.    recreating the directory structure and files on the receiving end, when
  45.    the platforms are not alike.  (Or when they are alike, in which binary
  46.    mode can be used for all files unless character-set translation is
  47.    needed.)
  48.  
  49. Watch the Kermit newsgroups for announcements of the new releases.
  50.  
  51. In the meantime, for Windows-to-Windows transfers, use ZIP files if you
  52. have the temporary storage space.  See:
  53.  
  54.   http://www.columbia.edu/kermit/ulinks.html
  55.  
  56. for links.
  57.  
  58. - Frank